From: Karl Heuer Date: Wed, 23 Mar 1994 22:29:02 +0000 (+0000) Subject: (lock_file): Use assignment, not initialization. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~92562 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=a57bc48815bde66703d2153894a931d554cc963e;p=emacs.git (lock_file): Use assignment, not initialization. --- diff --git a/src/filelock.c b/src/filelock.c index 48d1f0f758b..d6ee952348b 100644 --- a/src/filelock.c +++ b/src/filelock.c @@ -207,7 +207,8 @@ lock_file (fn) /* See if this file is visited and has changed on disk since it was visited. */ { - register Lisp_Object subject_buf = Fget_file_buffer (fn); + register Lisp_Object subject_buf; + subject_buf = Fget_file_buffer (fn); if (!NILP (subject_buf) && NILP (Fverify_visited_file_modtime (subject_buf)) && !NILP (Ffile_exists_p (fn)))